home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE07 / HTMLVIEW / HTMLVIEW.ZIP / DEMOSRC.ZIP / HTMLDEMO.DPR < prev   
Encoding:
Text File  |  1995-09-19  |  247 b   |  15 lines

  1. program Htmldemo;
  2.  
  3. uses
  4.   Forms,
  5.   Demounit in 'DEMOUNIT.PAS' {Form1},
  6.   Fontdlg in 'FONTDLG.PAS' {FontForm},
  7.   Htmlabt in 'HTMLABT.PAS' {AboutBox};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.